home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro13
/
setdisk.c
< prev
next >
Wrap
Text File
|
1993-02-09
|
220b
|
17 lines
/*
setdisk.C
Copyright (C) 1993, Geoff Friesen B.Sc.
All rights reserved.
*/
#define INCL_SETDISK
int setdisk (int drive)
{
asm mov ah, 0eh
asm mov dl, drive
asm int 21h
asm mov ah, 0
}